-
Notifications
You must be signed in to change notification settings - Fork 14
ci: add PAT so that tag generated from CI will trigger the docker images #57
Conversation
WalkthroughThe GitHub Actions workflow for releases has been updated to be manually triggered, removing the automatic execution upon tag creation. Additionally, the token used for Docker-related actions within the release process has been changed to a different Personal Access Token. Changes
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (invoked as PR comments)
Additionally, you can add CodeRabbit Configration File (
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Review Status
Actionable comments generated: 0
Configuration used: CodeRabbit UI
Files selected for processing (1)
- .github/workflows/ci_release.yml (1 hunks)
Additional comments: 3
.github/workflows/ci_release.yml (3)
40-40: The conditional trigger for the
release
job has been correctly updated to only execute on aworkflow_dispatch
event. This aligns with the PR objectives to require manual intervention for releases.47-47: The
github-token
has been replaced withPAT_FOR_DOCKER_TRIGGER
. Ensure that this Personal Access Token has been configured with the correct permissions in the repository's secrets to trigger Docker image creation.37-48: > Note: This review was outside the patches, and no patch overlapping with it was found. Original lines [7-8]
The logic for triggering the
release
job on tag pushes (tags: - "v*"
) appears to have been removed, as mentioned in the summary. This change should be carefully considered as it alters the automation of the release process, requiring manual dispatch for new releases.
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #57 +/- ##
=======================================
Coverage 74.05% 74.05%
=======================================
Files 2 2
Lines 158 158
=======================================
Hits 117 117
Misses 28 28
Partials 13 13 ☔ View full report in Codecov by Sentry. |
Overview
Checklist
Summary by CodeRabbit